home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / ixemul / sdk / man / cat7 / mailaddr.0 < prev    next >
Encoding:
Text File  |  1998-06-15  |  4.6 KB  |  128 lines

  1.  
  2. MAILADDR(7)                  UNIX Reference Manual                 MAILADDR(7)
  3.  
  4. NNAAMMEE
  5.      mmaaiillaaddddrr - mail addressing description
  6.  
  7. DDEESSCCRRIIPPTTIIOONN
  8.      Mail addresses are based on the Internet protocol listed at the end of
  9.      this manual page.  These addresses are in the general format
  10.  
  11.            user@domain
  12.  
  13.      where a domain is a hierarchical dot separated list of subdomains.  For
  14.      example, a valid address is:
  15.  
  16.            eric@CS.Berkeley.EDU
  17.  
  18.      Unlike some other forms of addressing, domains do not imply any routing.
  19.      Thus, although this address is specified as an Internet address, it might
  20.      travel by an alternate route if that were more convenient or efficient.
  21.      For example, at Berkeley, the associated message would probably go di-
  22.      rectly to CS over the Ethernet rather than going via the Berkeley Inter-
  23.      net gateway.
  24.  
  25.    AAbbbbrreevviiaattiioonn..
  26.      Under certain circumstances it may not be necessary to type the entire
  27.      domain name.  In general, anything following the first dot may be omitted
  28.      if it is the same as the domain from which you are sending the message.
  29.      For example, a user on ``calder.berkeley.edu'' could send to ``eric@CS''
  30.      without adding the ``berkeley.edu'' since it is the same on both sending
  31.      and receiving hosts.
  32.  
  33.    CCoommppaattiibbiilliittyy..
  34.  
  35.      Certain old address formats are converted to the new format to provide
  36.      compatibility with the previous mail system.  In particular,
  37.  
  38.            user@host
  39.  
  40.      and
  41.            user@host.domain
  42.  
  43.      are allowed;
  44.  
  45.            host.domain!user
  46.  
  47.      is converted to
  48.  
  49.            user@host.domain
  50.  
  51.      and
  52.  
  53.            host!user
  54.  
  55.      is converted to
  56.  
  57.            user@host.UUCP
  58.  
  59.      This is normally converted back to the ``host!user'' form before being
  60.      sent on for compatibility with older UUCP hosts.
  61.  
  62.    CCaassee DDiissttiinnccttiioonnss..
  63.  
  64.      Domain names (i.e., anything after the ``@'' sign) may be given in any
  65.      mixture of upper and lower case with the exception of UUCP hostnames.
  66.      Most hosts accept any combination of case in user names, with the notable
  67.      exception of MULTICS sites.
  68.  
  69.    RRoouuttee--aaddddrrss..
  70.  
  71.      Under some circumstances it may be necessary to route a message through
  72.      several hosts to get it to the final destination.  Normally this routing
  73.      is done automatically, but sometimes it is desirable to route the message
  74.      manually.  Addresses which show these relays are termed ``route-addrs.''
  75.      These use the syntax:
  76.  
  77.            <@hosta,@hostb:user@hostc>
  78.  
  79.      This specifies that the message should be sent to hosta, from there to
  80.      hostb, and finally to hostc.  This path is forced even if there is a more
  81.      efficient path to hostc.
  82.  
  83.      Route-addrs occur frequently on return addresses, since these are gener-
  84.      ally augmented by the software at each host.  It is generally possible to
  85.      ignore all but the ``user@hostc'' part of the address to determine the
  86.      actual sender.
  87.  
  88.      [Note: the route-addr syntax is officially deprecated in RFC 1123 and
  89.      should not be used.]
  90.  
  91.      Many sites also support the ``percent hack'' for simplistic routing:
  92.  
  93.            user%hostc%hostb@hosta
  94.  
  95.      is routed as indicated in the previous example.
  96.  
  97.    PPoossttmmaasstteerr..
  98.  
  99.      Every site is required to have a user or user alias designated ``postmas-
  100.      ter'' to which problems with the mail system may be addressed.
  101.  
  102.    OOtthheerr NNeettwwoorrkkss..
  103.  
  104.      Some other networks can be reached by giving the name of the network as
  105.      the last component of the domain.  _T_h_i_s _i_s _n_o_t _a _s_t_a_n_d_a_r_d _f_e_a_t_u_r_e and may
  106.      not be supported at all sites.  For example, messages to CSNET or BITNET
  107.      sites can often be sent to ``user@host.CSNET'' or ``user@host.BITNET''
  108.      respectively.
  109.  
  110. SSEEEE AALLSSOO
  111.      mail(1),  sendmail(8);
  112.      Crocker, D. H., _S_t_a_n_d_a_r_d _f_o_r _t_h_e _F_o_r_m_a_t _o_f _A_r_p_a _I_n_t_e_r_n_e_t _T_e_x_t _M_e_s_s_a_g_e_s_,
  113.      RFC822.
  114.  
  115. HHIISSTTOORRYY
  116.      MMaaiillaaddddrr appeared in 4.2 BSD.
  117.  
  118. BBUUGGSS
  119.      The RFC822 group syntax (``group:user1,user2,user3;'') is not supported
  120.      except in the special case of ``group:;'' because of a conflict with old
  121.      berknet-style addresses.
  122.  
  123.      Route-Address syntax is grotty.
  124.  
  125.      UUCP- and Internet-style addresses do not coexist politely.
  126.  
  127. 4.2 Berkeley Distribution        June 16, 1993                               2
  128.